home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / mac / viewers / vislab10.sit / Vision_Lab_Demo_1.0.bin / Vision Lab Demo 1.0.rsrc / POST_10002 < prev    next >
Encoding:
Text File  |  1989-04-19  |  474 b   |  36 lines

  1. gsave
  2. 100 dict begin
  3. /xorigin
  4.     Param1 def
  5. /yorigin
  6.     Param2 def
  7. /width
  8.     Param3 def
  9. /height
  10.     Param4 def
  11. /bpp
  12.     Param5 def
  13. /makexchars
  14. {
  15.     width bpp mul 7 add 8 idiv
  16. } def
  17. /xchars
  18.     makexchars def
  19. /picstr
  20. {
  21.     xchars 257 le
  22.     {xchars /xchars makexchars def}
  23.     {256 /xchars xchars 256 sub def}
  24.     ifelse string
  25. } def
  26. /dopic
  27. {
  28.     gsave
  29.     width height bpp
  30.     [width 0 0 height 0 0]
  31.     {currentfile picstr readhexstring pop} image
  32.     grestore
  33. } def
  34. xorigin yorigin translate
  35. width height scale
  36. dopic